body {
    background-image: url(images/starfield.png);
    background-size: contain;
    width: 100%;
    height: 100%;
    font-family: 'Verdana', sans-serif;
    color: greenyellow;
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    grid-template-rows: 60px 1fr 250px 1fr;
}

.topbar {
    grid-column-start: 1;
    grid-column-end: 4;
    border: 3px solid;
    border-color: black;
    height: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px 20px 20px 20px;
}

#thecomic {
   transform: translate(0px, 5px);
    scale: 1.025;
    background-color: #690069
}

.barbutton {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
    color: greenyellow;
    cursor: pointer;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.barbutton:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}

.comicbutton {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
    font-size: 1.40em;
    color: white;
    -webkit-text-stroke: 1px black;
    cursor: pointer;
    background-image: url(/images/rainbow.gif);
    border: 3px solid;
    border-color: mediumpurple;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.comicbutton:hover{
    width: 105%;
    height: 105%;
    border-color: white;
    color: black;
    -webkit-text-stroke: 1px white;
}

.hub {
    width: 100%;
    height: 100%;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    border-radius: 20px 0px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color:greenyellow;
    cursor: pointer;
}

.hub:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}

.indieweb {
    width: 100%;
    height: 100%;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color:greenyellow;
    cursor: pointer;
}

.indieweb:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}